VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Processing Namespace / ProcessingHelper Class / CreateCompositeProcessing Methods / CreateCompositeProcessing<TTarget>(String,IProcessingCommand<TTarget>[]) Method
Syntax Requirements SeeAlso
In This Topic
    CreateCompositeProcessing<TTarget>(String,IProcessingCommand<TTarget>[]) Method (ProcessingHelper)
    In This Topic
    Creates the composite processing command.
    Syntax
    'Declaration
    
    Public Overloads Shared Function CreateCompositeProcessing<TTarget
    The type of the target.
    >( _
    ByVal name
    The name of composite command.
    As System.String, _
    ByVal ParamArray processingCommands
    The processing commands.
    As IProcessingCommand(Of TTarget) _
    ) As ProcessingCommand(Of TTarget) (Of TTarget
    The type of the target.
    )
    public static ProcessingCommand<TTarget> CreateCompositeProcessing<TTarget>(
    System.String name,
    params IProcessingCommand<TTarget> processingCommands
    )
    public: static ProcessingCommand<TTarget*>* CreateCompositeProcessing<TTarget>(
    System.String name,
    params IProcessingCommand<TTarget*>* processingCommands
    )
    generic<typename TTarget>
    public:
    static ProcessingCommand<TTarget^>^ CreateCompositeProcessing(
    System.String name,
    ... IProcessingCommand<TTarget^>^ processingCommands
    )

    Parameters

    name
    The name of composite command.
    processingCommands
    The processing commands.

    Type Parameters

    TTarget
    The type of the target.

    Return Value

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also